home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / GNU / emacs_src.lha / src / amiga / emacs-18.59 / unix.lha / unix / src / bcopy.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-03  |  156 b   |  11 lines

  1. #include "amiga.h"
  2. #include <string.h>
  3.  
  4. #undef bcopy
  5.  
  6. void bcopy(char *b1, char *b2, int length)
  7. {
  8.   /* Unoptimised version */
  9.   memmove(b2, b1, length);
  10. }
  11.